home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 May / SGI IRIX 6.5 Complementary Applications 2004 May.iso / dist / OpenOffice.idb / usr / OpenOffice / help / en / sbasic.jar / text / sbasic / common / 03020412.xml < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-24  |  1.9 KB  |  35 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Name Statement [Runtime]</title><meta name="filename" content="text/sbasic/common/03020412"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         p.P2{
  7.                 }
  8.         span.T1{
  9.                 font-weight:bold;}
  10.         </style></head><body>
  11.   
  12.   
  13.   <help:to-be-embedded Eid="name" xmlns:help="http://openoffice.org/2000/help">
  14.   <p class="Head1"><help:link Id="66495">Name Statement [Runtime]</help:link></p>
  15.   <p class="Paragraph">Renames an existing file or directory.</p>
  16.   </help:to-be-embedded>
  17.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  18.   <p class="Paragraph">Name OldName As String As NewName As String <help:key-word value="Name" tag="kw66495_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  19.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  20.   <p class="Paragraph">OldName, NewName: Any string expression that specifies the file name, including path. The <help:link Id="66636" Eid="urllocal" xmlns:help="http://openoffice.org/2000/help">URL notation</help:link> can also be used here.</p>
  21.   <p class="Paragraph">If the path is not determined, the specified directory will be created in the current directory.</p>
  22.   <p class="P2">Example:</p>
  23.   <p class="PropText">Sub ExampleReName</p>
  24.   <p class="PropText">On Error Goto Error</p>
  25.   <p class="PropText">Filecopy "c:\autoexec.bat", "c:\temp\autoexec.sav"</p>
  26.   <p class="PropText">Name "c:\test\autoexec.sav" as "c:\temp\autoexec.bat"</p>
  27.   <p class="PropText">end</p>
  28.   <p class="PropText">Error:</p>
  29.   <p class="PropText">if err = 76 then</p>
  30.   <p class="PropText">msgbox "File already exists"</p>
  31.   <p class="PropText">end if</p>
  32.   <p class="PropText">end</p>
  33.   <p class="PropText">end sub</p>
  34.   <p class="PropText"/>
  35.  </body></html>